home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / rwvector.lha / RWVector2.1 / rw / pragmatize < prev    next >
Text File  |  1989-08-14  |  220b  |  13 lines

  1. #!    /bin/csh
  2. #
  3. #    replace pragma statements in .h files
  4. #
  5. #    This undoes the effect of pragmatize
  6. #
  7. foreach file (*.h)
  8.     echo $file
  9.     sed 's&^// #pragma&#pragma&' $file > $file.new
  10.     mv $file $file.old
  11.     mv $file.new $file
  12. end
  13.